home *** CD-ROM | disk | FTP | other *** search
- /*
- File: Scrap.h
-
- Copyright: © 1983-1993 by Apple Computer, Inc.
- All rights reserved.
-
- Version: System 7.1 for ETO #11
- Created: Tuesday, March 30, 1993 18:00
-
- */
-
- #ifndef __SCRAP__
- #define __SCRAP__
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
-
- struct ScrapStuff {
- long scrapSize;
- Handle scrapHandle;
- short scrapCount;
- short scrapState;
- StringPtr scrapName;
- };
-
- typedef struct ScrapStuff ScrapStuff;
- typedef ScrapStuff *PScrapStuff;
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
- pascal PScrapStuff InfoScrap(void)
- = 0xA9F9;
- pascal long UnloadScrap(void)
- = 0xA9FA;
- pascal long LoadScrap(void)
- = 0xA9FB;
- pascal long GetScrap(Handle hDest,ResType theType,long *offset)
- = 0xA9FD;
- pascal long ZeroScrap(void)
- = 0xA9FC;
- pascal long PutScrap(long length,ResType theType,Ptr source)
- = 0xA9FE;
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-